home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
WIN_PRO
/
DS-1.ZIP;1
/
ICONT.ZIP
/
LFILE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-10
|
258 b
|
11 lines
/*
* A linked list of files named by link declarations is maintained using
* lfile structures.
*/
struct lfile {
char *lf_name; /* name of the file */
struct lfile *lf_link; /* pointer to next file */
};
extern struct lfile *lfiles;